home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00217_Script_TEMPO_AVEC_CLICK_ZAP < prev    next >
Text File  |  2004-12-05  |  657b  |  30 lines

  1. global gJLM_W
  2. property p_duree,p_FlagTempo
  3. -----------------
  4. on getPropertyDescriptionList me
  5.   return [#p_duree:[#comment: "durΘe de la tempo:",#format:  #integer, #default: 1 ]]
  6. end getPropertyDescriptionList
  7. ---------------------
  8. on exitFrame me
  9.   case(p_FlagTempo = VOID) of
  10.     1:
  11.       p_FlagTempo = 1
  12.       startTimer
  13.       go the frame
  14.     0:
  15.       case(the timer< 60*p_duree) of
  16.         1:
  17.           go the frame
  18.         0:
  19.           p_FlagTempo = VOID
  20.       end case  
  21.   end case
  22. end
  23. -------------------
  24. on mouseUp
  25.   if the pauseState = 1 then exit
  26.   if gJLM_W > 0 then exit
  27.   go the frame + 1
  28. end
  29. -------------------
  30.